Interested in Pacman Development? This page should help you get started.

Remember that if **you** think something belongs on this page, add it! The current pacman developers are not likely to know what people need to know and should be on this page.

## Contents

*   [1 References and Links](#References_and_Links)
*   [2 Developer Repositories](#Developer_Repositories)
    *   [2.1 Allan McRae](#Allan_McRae)
    *   [2.2 Andrew Gregory](#Andrew_Gregory)
*   [3 Git Tips](#Git_Tips)

## References and Links

*   [Pacman Homepage](https://archlinux.org/pacman/)
*   [Latest NEWS/ChangeLog](https://projects.archlinux.org/pacman.git/plain/NEWS?id=HEAD)
*   [Pacman Git Web Interface](https://projects.archlinux.org/pacman.git/)
*   [Pacman Roadmap](/index.php/Pacman_Roadmap "Pacman Roadmap")

*   [Mailing List Archives](https://mailman.archlinux.org/pipermail/pacman-dev/)

*   [HACKING](https://archlinux.org/pacman/HACKING.html)
*   [Submitting Patches](https://archlinux.org/pacman/submitting-patches.html)
*   [Translation Help](https://archlinux.org/pacman/translation-help.html)

*   IRC: #archlinux-pacman on irc.freenode.net

## Developer Repositories

A handful of the "regulars" have their own repositories with work in progress, working and feature branches, etc. Several are listed here, but feel free to add more that you may know about.

### Allan McRae

Web: [https://projects.archlinux.org/users/allan/pacman.git/](https://projects.archlinux.org/users/allan/pacman.git/)
Clone: [git://projects.archlinux.org/users/allan/pacman.git](git://projects.archlinux.org/users/allan/pacman.git)
Clone: [https://projects.archlinux.org/git/users/allan/pacman.git](https://projects.archlinux.org/git/users/allan/pacman.git)

### Andrew Gregory

Web: [https://github.com/andrewgregory/pacman/](https://github.com/andrewgregory/pacman/)
Clone: [https://github.com/andrewgregory/pacman.git](https://github.com/andrewgregory/pacman.git)

## Git Tips

Before using these tips, it is highly recommended to read the [Super Quick Git Guide](/index.php/Super_Quick_Git_Guide "Super Quick Git Guide").

Clone git repo - only needed once

```
git clone [https://projects.archlinux.org/pacman.git](https://projects.archlinux.org/pacman.git) pacman

```

Enable useful hooks

```
mv .git/hooks/applypatch-msg.sample .git/hooks/applypatch-msg
mv .git/hooks/commit-msg.sample .git/hooks/commit-msg
mv .git/hooks/pre-commit.sample .git/hooks/pre-commit
mv .git/hooks/pre-rebase.sample .git/hooks/pre-rebase

```

or

```
rename .sample "" .git/hooks/*.sample

```

Always do your work on a new local branch to save yourself headaches.

Make patch to master branch

```
git format-patch master

```

Amend patch (do not use it after a push)

```
git commit -a --amend -s

```

Update master branch

```
git checkout master
git pull

```

Merge changes on master with "<branch>"

```
git rebase master <branch>

```

Get maint branch

```
git checkout -b maint origin/maint

```

Add a remote repository

```
git remote add toofishes [git://code.toofishes.net/dan/pacman.git](git://code.toofishes.net/dan/pacman.git)

```

Get toofishes working branch

```
git branch -r
git checkout -b toofishes-working toofishes/working

```